home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-19 / gpt32src.zip / MAKEFILE < prev    next >
Text File  |  1991-07-08  |  600b  |  31 lines

  1. # Makefile for gnuplot LaTeX tutorial
  2. # To make the manual from scratch, we run latex two times
  3. all: tutorial.dvi done
  4.  
  5. done:
  6.     latex tutorial
  7.     echo > done
  8.  
  9. # To touch it up after changes:
  10. remake: tutorial.dvi
  11.  
  12. # Always runs latex, e.g., to get labels right
  13. force: 
  14.     latex tutorial
  15.  
  16. tutorial.dvi: eg1.tex eg2.tex eg3.tex eg4.tex eg5.tex eg6.tex linepoint.tex \
  17.     tutorial.tex header.tex
  18.     latex tutorial
  19.     rm -f done
  20.  
  21. .SUFFIXES: .tex .plt
  22.  
  23. .plt.tex:
  24.     gnuplot $<
  25.  
  26. clean:
  27.     rm -f *~ *.log eg?.tex linepoint.tex
  28.  
  29. spotless:
  30.     rm -f *~ *.log *.aux *.dvi eg?.tex linepoint.tex done
  31.